home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1994 November
/
macformat-018.iso
/
Utility Spectacular
/
Developer
/
PAPTool
/
idle.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1992-11-29
|
214 b
|
14 lines
|
[
TEXT/MPS
]
// ©1992 Conrad Carlen & Manuel Veloso. All rights reserved.
#ifndef _IDLE_
#define _IDLE_
#ifndef __EVENTS__
#include <Events.h>
#endif
inline void idle(void)
{
if (!(TickCount() % 10)) SpinCursor(1);
}
#endif